diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-11 13:34:31 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-11 13:34:53 +0000 |
| commit | fbcc85ad822a9870ebebfdbd6bbbaa41ef1dff4c (patch) | |
| tree | fe7d9659c46eaf5d06e58f76e5b28942bdffcd43 /packages/mobile/app/[bookmark] | |
| parent | c87db85815d84ddf907d0a1d26226a2ab911181b (diff) | |
| download | karakeep-fbcc85ad822a9870ebebfdbd6bbbaa41ef1dff4c.tar.zst | |
mobile: An ugly but function share button
Diffstat (limited to 'packages/mobile/app/[bookmark]')
| -rw-r--r-- | packages/mobile/app/[bookmark]/[slug].tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/mobile/app/[bookmark]/[slug].tsx b/packages/mobile/app/[bookmark]/[slug].tsx new file mode 100644 index 00000000..2ca88701 --- /dev/null +++ b/packages/mobile/app/[bookmark]/[slug].tsx @@ -0,0 +1,9 @@ +import { View, Text } from "react-native"; + +export default function Bookmark() { + return ( + <View className="flex-1 items-center justify-center gap-4"> + <Text className="text-4xl">Hoarded!</Text> + </View> + ); +} |
